c# remove crlf from string

43

c# remove crlf from string -

// Remove all newlines from the 'example' string variable
string cleaned = example.Replace("\n", "").Replace("\r", "");

Comments

Submit
0 Comments